Specifies the point in the macro where you can jump using <goto> command.
Syntax:
<label>("Label")
Label
Name of the point to jump to. For example, <goto>("Section1") jumps to the
point <label>("Section1") in the same macro.
Example:
<#> This macro shows how to use 'goto' and 'label'
commands
<#>
<cmds>
<begloop>(0)
<if_num>("_vLoopCounter>5")
<msg>(100,100,"Too many loops...","Message",1)
<goto>("END")
<endif>
<endloop>
<msg>(100,100,"OK","Message",1)
<label>("END")